*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    overflow-x:hidden;
    width:100%;
}



/*==============================
        CONTACT HERO
==============================*/

.contact-hero{

    position:relative;

    height:340px;

    background:url("../Images/business-success-cogs-_1_.jpeg-copy.webp") center/cover;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.contact-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.contact-content{

    position:relative;

    text-align:center;

    color:#fff;

    z-index:2;

    width:90%;

    max-width:800px;

}

.contact-content h1{

    font-size:52px;

    margin-bottom:20px;

}

.contact-content p{

    font-size:18px;

    line-height:1.8;

}

.breadcrumb{

        display:inline-flex;

    gap:10px;

    background:rgba(255,255,255,.12);

    padding:12px 22px;

    border-radius:50px;

    backdrop-filter:blur(10px);

}

.breadcrumb a{

    color:#FFD54F;

    text-decoration:none;

    font-weight:600;

}

.breadcrumb span{

    margin:0 8px;

}



/*==============================
      CONTACT INFO
==============================*/


/* Section Container Styling */
.section-title {
    text-align: center;
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Chota Label (Get in Touch) */
.section-title span {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3b82f6; /* Modern Blue Color */
    margin-bottom: 10px;
    background-color: #eff6ff; /* Light Blue Background Badge */
    padding: 6px 16px;
    border-radius: 50px;
}

/* Main Heading (Contact Information) */
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937; /* Dark Slate Gray */
    margin: 0 0 16px 0;
    position: relative;
}

/* Paragraph Text */
.section-title p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563; /* Soft Muted Gray */
    margin: 0;
}






/*==============================
      CONTACT INFO
==============================*/

.contact-info{

    max-width:1250px;

    margin:90px auto;

    padding:0 25px;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.contact-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-10px);

}

.contact-icon{

    font-size:48px;

    margin-bottom:20px;

}

.contact-card h3{

    color:#0D47A1;

    margin-bottom:15px;

}

.contact-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:10px;

}

.contact-card a{

    display:inline-block;

    margin-top:15px;

    text-decoration:none;

    color:#1565C0;

    font-weight:600;

}

.contact-card a:hover{

    color:#00C853;

}




/*================================
      CONTACT FORM
================================*/

.contact-main{

    max-width:1300px;

    margin:90px auto;

    padding:0 25px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

    align-items:start;

}

.contact-form-box{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.contact-form-box h2{

    color:#0D47A1;

    margin-bottom:10px;

}

.contact-form-box p{

    color:#666;

    margin-bottom:25px;

}

.contact-form-box form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-form-box input,

.contact-form-box textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    transition:.3s;

    outline:none;

}

.contact-form-box input:focus,

.contact-form-box textarea:focus{

    border-color:#1565C0;

    box-shadow:0 0 0 3px rgba(21,101,192,.15);

}

.contact-form-box textarea{

    resize:vertical;

}

.map-box{

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.map-box iframe{

    width:100%;

    height:100%;

    min-height:560px;

    border:none;

}




















@media(max-width:768px){

.contact-hero{

    height:260px;

}

.contact-content h1{

    font-size:34px;

}

.contact-content p{

    font-size:16px;

}

}



@media(max-width:900px){

.contact-main{

    grid-template-columns:1fr;

}

.map-box iframe{

    min-height:400px;

}

}